home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_teo_demois.cog < prev    next >
Text File  |  1999-11-15  |  1KB  |  44 lines

  1. # Jones 3D Cog Script
  2. #
  3. # TEO_DemoIs.cog
  4. #
  5. # Tells the level that this is the demo or not
  6. #
  7. # [SXC]
  8. #
  9. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  10. # ========================================================================================
  11.  
  12. symbols
  13.     message     startup
  14.         
  15.     cog         mirrorgodcog
  16.         
  17.     thing       door0
  18.     thing       door1
  19.     thing       door2
  20.     thing       door3        
  21.         
  22.     int         isdemo=0
  23.     int         count=0
  24. end
  25.  
  26. code
  27. # ........................................................................................
  28. startup:
  29.     if (isdemo == 1) 
  30.     {
  31.         SendMessage(mirrorgodcog, user0);
  32.         for (count=0; count < 3; count=count+1)
  33.         {
  34.             //MoveToFrame(door0[count1], 1, 1);
  35.             print("opening up statlock doors");
  36.         }            
  37.     }
  38.     return;
  39.         
  40. # ........................................................................................
  41.  
  42. end
  43.  
  44.